home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Window / DLL / MkStubsOs < prev    next >
Text File  |  1995-09-04  |  13KB  |  491 lines

  1.  
  2. ObjectFiles    =        \
  3.             o.AutoHelp    \
  4.             o.Create    \
  5.             o.CreateOrig    \
  6.             o.CreateShow    \
  7.             o.Delete    \
  8.             o.DeleteOrig    \
  9.             o.ForceRedrw    \
  10.             o.GainCaret    \
  11.             o.GetCoords    \
  12.             o.GetInfo    \
  13.             o.GetInfo3    \
  14.             o.Help    \
  15.             o.ModeChange    \
  16.             o.MoveWindow    \
  17.             o.ParentName    \
  18.             o.SetExtent    \
  19.             o.SetTitle    \
  20.             o.Show    \
  21.             o.ToFront    \
  22.             o.WholeRedrw    \
  23.  
  24.  
  25. LibName        =    Window
  26.  
  27.  
  28.  
  29. # Template makefile to make all .o files
  30. # and the SDLS Stubs file for DeskLib
  31. # sublibraries.
  32. # Julian Smith 16 Mar 1995.
  33.  
  34.  
  35. # The macro $(ObjectFiles) should be set at the 
  36. # start of this file, to be a space-separated
  37. # list of object files.
  38. # This is done by 'Makatic'.
  39.  
  40.  
  41. # The macro $(LibName) should also be set at the 
  42. # start of this file, to be the name of the 
  43. # DeskLib sublibrary.
  44. # This is done by 'Makatic'.
  45.  
  46. # Compiler and linker flags, These can be anything. 
  47. # All flags required by Straylight (eg CC -zM and
  48. # Link -rmf) are included in the macros $(CC) and
  49. # $(LINK).
  50. #
  51. CCFlags        =    -fahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_$(LibName) -I,C:
  52. ASMFlags    =    -Stamp -NoCache -CloseExec -Quit $(ASMExtra)
  53.  
  54.  
  55. # Macros for commands, including the Straylight
  56. # tool 'cdll'. Note that DRLink doesn't seem to
  57. # work with the SDLS.
  58. #
  59. CC        =    cc -c -zM -d_DLL -JC:DLLLib.,:mem $(CCFlags)
  60. ASM        =    ObjAsm $(ASMFlags)
  61. CDLL        =    cdll
  62. LINK        =    link
  63. AS        =    as -dde -throwback
  64.  
  65.  
  66. # filename of DLL Stubs aof file. This is linked with client apps.
  67. DLL_Stubs    =    Stubs
  68.  
  69.  
  70. # Filenames of intermediate files needed to make $(DLL_Lib) and $(DLL_Stubs).
  71. #
  72. # DLL_Def:        Standard definition file as per SDLS docs.
  73. # DLL_OtherStubsSource    Assembler source to be partially linked into
  74. #            the final stubs file. This will force linking
  75. #            in of stubs from any other DLLs used by this
  76. #            library when a client application is built.
  77. # DLL_PlainStubs    The vanilla stubs file created by SDLS's cdll.
  78. # DLL_OtherStubsObject    Assembled from DLL_OtherStubsSource. This
  79. #            simply imports __DeskLib_SDLS_Stubs_<libname>'s
  80. #            for all DeskLib DLLs used by this library, and
  81. #            exports __DeskLib_SDLS_Stubs_<thislibname>.
  82. #
  83. DLL_Def            =    ^.DLLDef
  84. DLL_OtherStubsSource    =    ^.OtherStubs
  85.  
  86. DLL_PlainStubs        =    PlainStubs
  87. DLL_OtherStubsObject    =    OSObj
  88.  
  89. # -------------------------------------------------------
  90. # Everything below here should probably not be changed...
  91. # -------------------------------------------------------
  92.  
  93.  
  94.  
  95. # Now all the rules...
  96.  
  97.  
  98. # Here's the two things we want to make...
  99. #
  100. All:    $(DLL_Stubs) $(ObjectFiles)
  101.  
  102. $(DLL_Stubs):    $(DLL_PlainStubs) $(DLL_OtherStubsObject)
  103.     $(LINK) -aof -o $@ $(DLL_PlainStubs) $(DLL_OtherStubsObject)
  104.  
  105. $(DLL_PlainStubs):    $(DLL_Def)
  106.     $(CDLL) -def $(DLL_Def) -stub $(DLL_PlainStubs)
  107.  
  108.  
  109. #$(DLL_OtherStubsObject):    $(DLL_OtherStubsSource)
  110. #    $(AS) -o $(DLL_OtherStubsObject) $(DLL_OtherStubsSource)
  111.  
  112. $(DLL_OtherStubsObject):    $(DLL_OtherStubsSource)
  113.     $(ASM) $(ASMFlags) -from $(DLL_OtherStubsSource) -to $(DLL_OtherStubsObject) 
  114.  
  115.  
  116. $(DLL_Def):    
  117.     | Warning: No DLL definition file exists.
  118.     | Creating a default DLL definition file: $(DLL_Def)
  119.     | This will have to be altered by hand.
  120.     $(CDLL) -def $(DLL_Def) -obj $(ObjectFiles)
  121.  
  122.  
  123.  
  124. # Rule for compiling C source code for a Straylight dynamically-linked library.
  125.  
  126. VPATH = @.^
  127.  
  128. .SUFFIXES:    .o .c .s
  129.  
  130. .c.o:
  131.     $(CC) -o $@ $<
  132.  
  133. .s.o:
  134.     $(ASM) $(ASMFlags) -from $< -to $@
  135.  
  136.  
  137.  
  138. # Dynamic dependencies:
  139. o.AutoHelp:    ^.c.AutoHelp
  140. o.AutoHelp:    DeskLib:h.Wimp
  141. o.AutoHelp:    DeskLib:h.Core
  142. o.AutoHelp:    C:h.stddef
  143. o.AutoHelp:    C:DLLLib.h.dll
  144. o.AutoHelp:    C:h.kernel
  145. o.AutoHelp:    DeskLib:h.Event
  146. o.AutoHelp:    DeskLib:h.Window
  147. o.AutoHelp:    DeskLib:h.WimpSWIs
  148. o.AutoHelp:    DeskLib:h.Pointer
  149. o.AutoHelp:    DeskLib:h.Core
  150. o.AutoHelp:    DeskLib:h.Icon
  151. o.AutoHelp:    DeskLib:h.DragASpr
  152. o.AutoHelp:    DeskLib:h.Window
  153. o.AutoHelp:    DeskLib:h.Coord
  154. o.Create:    ^.c.Create
  155. o.Create:    C:h.stdlib
  156. o.Create:    C:h.string
  157. o.Create:    DeskLib:h.LinkList
  158. o.Create:    DeskLib:h.Core
  159. o.Create:    C:h.stddef
  160. o.Create:    C:DLLLib.h.dll
  161. o.Create:    C:h.kernel
  162. o.Create:    DeskLib:h.WimpSWIs
  163. o.Create:    DeskLib:h.Wimp
  164. o.Create:    DeskLib:h.Template
  165. o.Create:    DeskLib:h.Sprite
  166. o.Create:    DeskLib:h.Coord
  167. o.Create:    C:h.stdarg
  168. o.Create:    DeskLib:h.Event
  169. o.Create:    DeskLib:h.Window
  170. o.Create:    DeskLib:h.Pointer
  171. o.Create:    DeskLib:h.Core
  172. o.Create:    DeskLib:h.Icon
  173. o.Create:    DeskLib:h.DragASpr
  174. o.Create:    DeskLib:h.Window
  175. o.Create:    DeskLib:h.Screen
  176. o.Create:    DeskLib:h.Error
  177. o.Create:    ^.h.WindowDefs
  178. o.CreateOrig:    ^.c.CreateOrig
  179. o.CreateOrig:    DeskLib:h.LinkList
  180. o.CreateOrig:    DeskLib:h.Core
  181. o.CreateOrig:    C:h.stddef
  182. o.CreateOrig:    C:DLLLib.h.dll
  183. o.CreateOrig:    C:h.kernel
  184. o.CreateOrig:    DeskLib:h.WimpSWIs
  185. o.CreateOrig:    DeskLib:h.Wimp
  186. o.CreateOrig:    DeskLib:h.Template
  187. o.CreateOrig:    DeskLib:h.Sprite
  188. o.CreateOrig:    DeskLib:h.Coord
  189. o.CreateOrig:    C:h.stdarg
  190. o.CreateOrig:    DeskLib:h.Event
  191. o.CreateOrig:    DeskLib:h.Window
  192. o.CreateOrig:    DeskLib:h.Pointer
  193. o.CreateOrig:    DeskLib:h.Core
  194. o.CreateOrig:    DeskLib:h.Icon
  195. o.CreateOrig:    DeskLib:h.DragASpr
  196. o.CreateOrig:    DeskLib:h.Window
  197. o.CreateOrig:    DeskLib:h.Screen
  198. o.CreateOrig:    DeskLib:h.Error
  199. o.CreateOrig:    ^.h.WindowDefs
  200. o.CreateOrig:    C:h.stdlib
  201. o.CreateOrig:    C:h.string
  202. o.CreateShow:    ^.c.CreateShow
  203. o.CreateShow:    DeskLib:h.Window
  204. o.CreateShow:    DeskLib:h.Wimp
  205. o.CreateShow:    DeskLib:h.Core
  206. o.CreateShow:    C:h.stddef
  207. o.CreateShow:    C:DLLLib.h.dll
  208. o.CreateShow:    C:h.kernel
  209. o.CreateShow:    DeskLib:h.WimpSWIs
  210. o.CreateShow:    DeskLib:h.Pointer
  211. o.CreateShow:    DeskLib:h.Core
  212. o.CreateShow:    DeskLib:h.Icon
  213. o.CreateShow:    DeskLib:h.DragASpr
  214. o.CreateShow:    DeskLib:h.Window
  215. o.CreateShow:    DeskLib:h.Coord
  216. o.Delete:    ^.c.Delete
  217. o.Delete:    C:h.stdlib
  218. o.Delete:    C:h.string
  219. o.Delete:    DeskLib:h.LinkList
  220. o.Delete:    DeskLib:h.Core
  221. o.Delete:    C:h.stddef
  222. o.Delete:    C:DLLLib.h.dll
  223. o.Delete:    C:h.kernel
  224. o.Delete:    DeskLib:h.WimpSWIs
  225. o.Delete:    DeskLib:h.Wimp
  226. o.Delete:    DeskLib:h.Template
  227. o.Delete:    DeskLib:h.Sprite
  228. o.Delete:    DeskLib:h.Coord
  229. o.Delete:    C:h.stdarg
  230. o.Delete:    DeskLib:h.Event
  231. o.Delete:    DeskLib:h.EventMsg
  232. o.Delete:    DeskLib:h.Window
  233. o.Delete:    DeskLib:h.Pointer
  234. o.Delete:    DeskLib:h.Core
  235. o.Delete:    DeskLib:h.Icon
  236. o.Delete:    DeskLib:h.DragASpr
  237. o.Delete:    DeskLib:h.Window
  238. o.Delete:    DeskLib:h.Screen
  239. o.Delete:    DeskLib:h.Error
  240. o.Delete:    ^.h.WindowDefs
  241. o.DeleteOrig:    ^.c.DeleteOrig
  242. o.DeleteOrig:    DeskLib:h.LinkList
  243. o.DeleteOrig:    DeskLib:h.Core
  244. o.DeleteOrig:    C:h.stddef
  245. o.DeleteOrig:    C:DLLLib.h.dll
  246. o.DeleteOrig:    C:h.kernel
  247. o.DeleteOrig:    DeskLib:h.WimpSWIs
  248. o.DeleteOrig:    DeskLib:h.Wimp
  249. o.DeleteOrig:    DeskLib:h.Template
  250. o.DeleteOrig:    DeskLib:h.Sprite
  251. o.DeleteOrig:    DeskLib:h.Coord
  252. o.DeleteOrig:    C:h.stdarg
  253. o.DeleteOrig:    DeskLib:h.Event
  254. o.DeleteOrig:    DeskLib:h.EventMsg
  255. o.DeleteOrig:    DeskLib:h.Window
  256. o.DeleteOrig:    DeskLib:h.Pointer
  257. o.DeleteOrig:    DeskLib:h.Core
  258. o.DeleteOrig:    DeskLib:h.Icon
  259. o.DeleteOrig:    DeskLib:h.DragASpr
  260. o.DeleteOrig:    DeskLib:h.Window
  261. o.DeleteOrig:    DeskLib:h.Screen
  262. o.DeleteOrig:    DeskLib:h.Error
  263. o.DeleteOrig:    DeskLib:h.Window
  264. o.DeleteOrig:    ^.h.WindowDefs
  265. o.DeleteOrig:    C:h.stdlib
  266. o.DeleteOrig:    C:h.string
  267. o.ForceRedrw:    ^.c.ForceRedrw
  268. o.ForceRedrw:    DeskLib:h.WimpSWIs
  269. o.ForceRedrw:    DeskLib:h.Core
  270. o.ForceRedrw:    C:h.stddef
  271. o.ForceRedrw:    C:DLLLib.h.dll
  272. o.ForceRedrw:    C:h.kernel
  273. o.ForceRedrw:    DeskLib:h.Wimp
  274. o.ForceRedrw:    DeskLib:h.Window
  275. o.ForceRedrw:    DeskLib:h.Pointer
  276. o.ForceRedrw:    DeskLib:h.Core
  277. o.ForceRedrw:    DeskLib:h.Icon
  278. o.ForceRedrw:    DeskLib:h.DragASpr
  279. o.ForceRedrw:    DeskLib:h.Window
  280. o.ForceRedrw:    DeskLib:h.Coord
  281. o.GainCaret:    ^.c.GainCaret
  282. o.GainCaret:    C:h.stdlib
  283. o.GainCaret:    DeskLib:h.Window
  284. o.GainCaret:    DeskLib:h.Wimp
  285. o.GainCaret:    DeskLib:h.Core
  286. o.GainCaret:    C:h.stddef
  287. o.GainCaret:    C:DLLLib.h.dll
  288. o.GainCaret:    C:h.kernel
  289. o.GainCaret:    DeskLib:h.WimpSWIs
  290. o.GainCaret:    DeskLib:h.Pointer
  291. o.GainCaret:    DeskLib:h.Core
  292. o.GainCaret:    DeskLib:h.Icon
  293. o.GainCaret:    DeskLib:h.DragASpr
  294. o.GainCaret:    DeskLib:h.Window
  295. o.GainCaret:    DeskLib:h.Coord
  296. o.GainCaret:    DeskLib:h.Icon
  297. o.GainCaret:    DeskLib:h.WimpSWIs
  298. o.GetCoords:    ^.c.GetCoords
  299. o.GetCoords:    DeskLib:h.WimpSWIs
  300. o.GetCoords:    DeskLib:h.Core
  301. o.GetCoords:    C:h.stddef
  302. o.GetCoords:    C:DLLLib.h.dll
  303. o.GetCoords:    C:h.kernel
  304. o.GetCoords:    DeskLib:h.Wimp
  305. o.GetCoords:    DeskLib:h.Coord
  306. o.GetCoords:    DeskLib:h.Window
  307. o.GetCoords:    DeskLib:h.Pointer
  308. o.GetCoords:    DeskLib:h.Core
  309. o.GetCoords:    DeskLib:h.Icon
  310. o.GetCoords:    DeskLib:h.DragASpr
  311. o.GetCoords:    DeskLib:h.Window
  312. o.GetInfo:    ^.c.GetInfo
  313. o.GetInfo:    C:h.string
  314. o.GetInfo:    DeskLib:h.WimpSWIs
  315. o.GetInfo:    DeskLib:h.Core
  316. o.GetInfo:    C:h.stddef
  317. o.GetInfo:    C:DLLLib.h.dll
  318. o.GetInfo:    C:h.kernel
  319. o.GetInfo:    DeskLib:h.Wimp
  320. o.GetInfo:    DeskLib:h.Window
  321. o.GetInfo:    DeskLib:h.Pointer
  322. o.GetInfo:    DeskLib:h.Core
  323. o.GetInfo:    DeskLib:h.Icon
  324. o.GetInfo:    DeskLib:h.DragASpr
  325. o.GetInfo:    DeskLib:h.Window
  326. o.GetInfo:    DeskLib:h.Coord
  327. o.GetInfo3:    ^.c.GetInfo3
  328. o.GetInfo3:    DeskLib:h.Window
  329. o.GetInfo3:    DeskLib:h.Wimp
  330. o.GetInfo3:    DeskLib:h.Core
  331. o.GetInfo3:    C:h.stddef
  332. o.GetInfo3:    C:DLLLib.h.dll
  333. o.GetInfo3:    C:h.kernel
  334. o.GetInfo3:    DeskLib:h.WimpSWIs
  335. o.GetInfo3:    DeskLib:h.Pointer
  336. o.GetInfo3:    DeskLib:h.Core
  337. o.GetInfo3:    DeskLib:h.Icon
  338. o.GetInfo3:    DeskLib:h.DragASpr
  339. o.GetInfo3:    DeskLib:h.Window
  340. o.GetInfo3:    DeskLib:h.Coord
  341. o.GetInfo3:    DeskLib:h.WimpSWIs
  342. o.Help:    ^.c.Help
  343. o.Help:    C:h.stdio
  344. o.Help:    C:h.string
  345. o.Help:    DeskLib:h.Event
  346. o.Help:    DeskLib:h.Core
  347. o.Help:    C:h.stddef
  348. o.Help:    C:DLLLib.h.dll
  349. o.Help:    C:h.kernel
  350. o.Help:    DeskLib:h.Wimp
  351. o.Help:    DeskLib:h.Window
  352. o.Help:    DeskLib:h.WimpSWIs
  353. o.Help:    DeskLib:h.Pointer
  354. o.Help:    DeskLib:h.Core
  355. o.Help:    DeskLib:h.Icon
  356. o.Help:    DeskLib:h.DragASpr
  357. o.Help:    DeskLib:h.Window
  358. o.Help:    DeskLib:h.Coord
  359. o.Help:    DeskLib:h.Msgs
  360. o.Help:    DeskLib:h.WimpSWIs
  361. o.ModeChange:    ^.c.ModeChange
  362. o.ModeChange:    Desklib:h.Error
  363. o.ModeChange:    Desklib:h.Core
  364. o.ModeChange:    C:h.stddef
  365. o.ModeChange:    C:DLLLib.h.dll
  366. o.ModeChange:    C:h.kernel
  367. o.ModeChange:    Desklib:h.Event
  368. o.ModeChange:    Desklib:h.Wimp
  369. o.ModeChange:    Desklib:h.Font
  370. o.ModeChange:    Desklib:h.LinkList
  371. o.ModeChange:    Desklib:h.Screen
  372. o.ModeChange:    Desklib:h.Template
  373. o.ModeChange:    Desklib:h.Sprite
  374. o.ModeChange:    Desklib:h.Coord
  375. o.ModeChange:    C:h.stdarg
  376. o.ModeChange:    Desklib:h.Window
  377. o.ModeChange:    Desklib:h.WimpSWIs
  378. o.ModeChange:    Desklib:h.Pointer
  379. o.ModeChange:    Desklib:h.Core
  380. o.ModeChange:    Desklib:h.Icon
  381. o.ModeChange:    Desklib:h.DragASpr
  382. o.ModeChange:    Desklib:h.Window
  383. o.ModeChange:    Desklib:h.WimpSWIs
  384. o.ModeChange:    ^.h.WindowDefs
  385. o.ModeChange:    C:h.string
  386. o.MoveWindow:    ^.c.MoveWindow
  387. o.MoveWindow:    DeskLib:h.Wimp
  388. o.MoveWindow:    DeskLib:h.Core
  389. o.MoveWindow:    C:h.stddef
  390. o.MoveWindow:    C:DLLLib.h.dll
  391. o.MoveWindow:    C:h.kernel
  392. o.MoveWindow:    DeskLib:h.Window
  393. o.MoveWindow:    DeskLib:h.WimpSWIs
  394. o.MoveWindow:    DeskLib:h.Pointer
  395. o.MoveWindow:    DeskLib:h.Core
  396. o.MoveWindow:    DeskLib:h.Icon
  397. o.MoveWindow:    DeskLib:h.DragASpr
  398. o.MoveWindow:    DeskLib:h.Window
  399. o.MoveWindow:    DeskLib:h.Coord
  400. o.MoveWindow:    DeskLib:h.Error
  401. o.ParentName:    ^.c.ParentName
  402. o.ParentName:    C:h.string
  403. o.ParentName:    DeskLib:h.LinkList
  404. o.ParentName:    DeskLib:h.Core
  405. o.ParentName:    C:h.stddef
  406. o.ParentName:    C:DLLLib.h.dll
  407. o.ParentName:    C:h.kernel
  408. o.ParentName:    DeskLib:h.Window
  409. o.ParentName:    DeskLib:h.Wimp
  410. o.ParentName:    DeskLib:h.WimpSWIs
  411. o.ParentName:    DeskLib:h.Pointer
  412. o.ParentName:    DeskLib:h.Core
  413. o.ParentName:    DeskLib:h.Icon
  414. o.ParentName:    DeskLib:h.DragASpr
  415. o.ParentName:    DeskLib:h.Window
  416. o.ParentName:    DeskLib:h.Coord
  417. o.ParentName:    ^.h.WindowDefs
  418. o.SetExtent:    ^.c.SetExtent
  419. o.SetExtent:    DeskLib:h.WimpSWIs
  420. o.SetExtent:    DeskLib:h.Core
  421. o.SetExtent:    C:h.stddef
  422. o.SetExtent:    C:DLLLib.h.dll
  423. o.SetExtent:    C:h.kernel
  424. o.SetExtent:    DeskLib:h.Wimp
  425. o.SetExtent:    DeskLib:h.Window
  426. o.SetExtent:    DeskLib:h.Pointer
  427. o.SetExtent:    DeskLib:h.Core
  428. o.SetExtent:    DeskLib:h.Icon
  429. o.SetExtent:    DeskLib:h.DragASpr
  430. o.SetExtent:    DeskLib:h.Window
  431. o.SetExtent:    DeskLib:h.Coord
  432. o.SetTitle:    ^.c.SetTitle
  433. o.SetTitle:    C:h.string
  434. o.SetTitle:    DeskLib:h.Wimp
  435. o.SetTitle:    DeskLib:h.Core
  436. o.SetTitle:    C:h.stddef
  437. o.SetTitle:    C:DLLLib.h.dll
  438. o.SetTitle:    C:h.kernel
  439. o.SetTitle:    DeskLib:h.WimpSWIs
  440. o.SetTitle:    DeskLib:h.Window
  441. o.SetTitle:    DeskLib:h.Pointer
  442. o.SetTitle:    DeskLib:h.Core
  443. o.SetTitle:    DeskLib:h.Icon
  444. o.SetTitle:    DeskLib:h.DragASpr
  445. o.SetTitle:    DeskLib:h.Window
  446. o.SetTitle:    DeskLib:h.Coord
  447. o.Show:    ^.c.Show
  448. o.Show:    DeskLib:h.WimpSWIs
  449. o.Show:    DeskLib:h.Core
  450. o.Show:    C:h.stddef
  451. o.Show:    C:DLLLib.h.dll
  452. o.Show:    C:h.kernel
  453. o.Show:    DeskLib:h.Wimp
  454. o.Show:    DeskLib:h.Window
  455. o.Show:    DeskLib:h.Pointer
  456. o.Show:    DeskLib:h.Core
  457. o.Show:    DeskLib:h.Icon
  458. o.Show:    DeskLib:h.DragASpr
  459. o.Show:    DeskLib:h.Window
  460. o.Show:    DeskLib:h.Coord
  461. o.Show:    DeskLib:h.Screen
  462. o.ToFront:    ^.c.ToFront
  463. o.ToFront:    DeskLib:h.WimpSWIs
  464. o.ToFront:    DeskLib:h.Core
  465. o.ToFront:    C:h.stddef
  466. o.ToFront:    C:DLLLib.h.dll
  467. o.ToFront:    C:h.kernel
  468. o.ToFront:    DeskLib:h.Wimp
  469. o.ToFront:    DeskLib:h.Window
  470. o.ToFront:    DeskLib:h.Pointer
  471. o.ToFront:    DeskLib:h.Core
  472. o.ToFront:    DeskLib:h.Icon
  473. o.ToFront:    DeskLib:h.DragASpr
  474. o.ToFront:    DeskLib:h.Window
  475. o.ToFront:    DeskLib:h.Coord
  476. o.WholeRedrw:    ^.c.WholeRedrw
  477. o.WholeRedrw:    DeskLib:h.Wimp
  478. o.WholeRedrw:    DeskLib:h.Core
  479. o.WholeRedrw:    C:h.stddef
  480. o.WholeRedrw:    C:DLLLib.h.dll
  481. o.WholeRedrw:    C:h.kernel
  482. o.WholeRedrw:    DeskLib:h.WimpSWIs
  483. o.WholeRedrw:    DeskLib:h.Window
  484. o.WholeRedrw:    DeskLib:h.Pointer
  485. o.WholeRedrw:    DeskLib:h.Core
  486. o.WholeRedrw:    DeskLib:h.Icon
  487. o.WholeRedrw:    DeskLib:h.DragASpr
  488. o.WholeRedrw:    DeskLib:h.Window
  489. o.WholeRedrw:    DeskLib:h.Coord
  490.